home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 031a / next21.zip / SETUP.BAT < prev    next >
DOS Batch File  |  1992-01-23  |  559b  |  25 lines

  1. echo off
  2. cls
  3.  
  4. echo NeXT Application Bar Setup Program
  5. echo ----------------------------------
  6. if NOT "%1"=="" goto continue
  7. echo Type: SETUP.BAT {your WINDOWS directory}
  8. echo For example, if your WINDOWS directory is C:\WINDOWS, then you 
  9. echo should type
  10. echo             SETUP C:\WINDOWS
  11.  
  12. goto end
  13.  
  14. :continue
  15. echo Making Directory %1\NEXT
  16. md %1\next
  17. copy next\*.ico %1\next
  18. copy next\next.wri %1
  19. copy next\next.ini %1
  20. copy next\next.exe %1\next
  21.  
  22. :end
  23. echo ---
  24. echo Read the file "NEXT.TXT" for important program information and explanations.
  25.